home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / misc / fpl-v13.lha / fpl / src / Makefile.SVR4 < prev    next >
Makefile  |  1995-06-29  |  3KB  |  83 lines

  1. # $VER: fpllib.so makefile v1.0 94-03-14
  2.  
  3. ########################################################################
  4. #                                                                      #
  5. # fpl.library - A shared library interpreting script langauge.         #
  6. # Copyright (C) 1992-1994 FrexxWare                                    #
  7. # Author: Daniel Stenberg                                              #
  8. #                                                                      #
  9. # This program is free software; you may redistribute for non          #
  10. # commercial purposes only. Commercial programs must have a written    #
  11. # permission from the author to use FPL. FPL is *NOT* public domain!   #
  12. # Any provided source code is only for reference and for assurance     #
  13. # that users should be able to compile FPL on any operating system     #
  14. # he/she wants to use it in!                                           #
  15. #                                                                      #
  16. # You may not change, resource, patch files or in any way reverse      #
  17. # engineer anything in the FPL package.                                #
  18. #                                                                      #
  19. # This program is distributed in the hope that it will be useful,      #
  20. # but WITHOUT ANY WARRANTY; without even the implied warranty of       #
  21. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.                 #
  22. #                                                                      #
  23. # Daniel Stenberg                                                      #
  24. # Ankdammsgatan 36, 4tr                                                #
  25. # S-171 43 Solna                                                       #
  26. # Sweden                                                               #
  27. #                                                                      #
  28. # FidoNet 2:201/328    email:dast@sth.frontec.se                       #
  29. #                                                                      #
  30. ########################################################################
  31.  
  32. .SUFFIXES: .o .c .c~ .h .h~ .a .i
  33.  
  34. ################################################
  35. # Below follows all UNIX macros/actions/lines: #
  36. ################################################
  37. LIB     = libfpl.a
  38. TARGET  = FPL
  39. EXPORT  = fpl.exp
  40. OBJS    = script.o numexpr.o caller.o hash.o statement.o memory.o frontend.o \
  41.           reference.o sprintf.o scan.o
  42. LIBOBJS = script.o numexpr.o hash.o statement.o memory.o frontend.o \
  43.           reference.o sprintf.o scan.o
  44. LIBDEP  = $(LIBOBJS) $(EXPORT)
  45. TEMP    = templib.o
  46.  
  47. # if using the `gcc' compiler:
  48. CFLAGS  = -DUNIX -DSHARED -ansi -pedantic -O2 -funsigned-char
  49. CC      = gcc
  50. #CC     = cc
  51. LD      = ld
  52. LDFLAGS = -G # -G makes the destination to become a sharable object!
  53.  
  54. all:    $(LIB) SFPL
  55.  
  56. $(LIB) : $(LIBDEP)
  57.     $(CC) $(LDFLAGS) $(LIBOBJS) -o $(LIB) -lc
  58.     cp -p FPL.h ../include/libraries
  59.  
  60. $(TARGET) : $(OBJS)
  61.     $(CC) $(OBJS) -o $(TARGET)
  62.  
  63. .c.o:
  64.     $(CC) $(CFLAGS) -c $<
  65.  
  66. # This compiling is using -DSFPL to make the MALLOC() macro not to use the
  67. # global `mem' variable!
  68. SFPL: caller.c FPL.h script.h Makefile.SVR4
  69.     $(CC) $(CFLAGS) -DSFPL -o SFPL caller.c -L. -lfpl
  70.  
  71. $(OBJS): script.h FPL.h
  72.  
  73. script.o:script.c
  74. numexpr.o:numexpr.c
  75. caller.o:caller.c
  76. statement.o:statement.c
  77. hash.o:hash.c
  78. memory.o:memory.c memory.h
  79. frontend.o:frontend.c
  80. reference.o:reference.c
  81. sprintf.o:sprintf.c
  82. scan.o:scan.c
  83.